home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Examples / AppKit / Draw / Ruler.h < prev    next >
Text File  |  1992-02-09  |  262b  |  17 lines

  1. @interface Ruler : View <Ruler>
  2. {
  3.     Font *font;
  4.     NXCoord descender;
  5.     NXCoord startX;
  6.     NXCoord lastlp, lasthp;
  7.     BOOL flipped;
  8.     BOOL notHidden;
  9. }
  10.  
  11. + (NXCoord)width;
  12.  
  13. - setFont:(Font *)aFont;
  14. - drawSelf:(const NXRect *)rects :(int)rectCount;
  15.  
  16. @end
  17.